home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 November: Tool Chest / Dev.CD Nov 96 TC / Dev.CD Nov 96 TC.toast / Sample Code / Text / SimpleText Sample / MovieFile.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-12  |  964 b   |  35 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        MovieFile.h
  3.  
  4.     Contains:    Movie file support for simple text application
  5.  
  6.     Version:    GX 1.2 or later
  7.  
  8. ** Copyright 1993-1996 Apple Computer. All rights reserved.
  9. **
  10. **    You may incorporate this sample code into your applications without
  11. **    restriction, though the sample code has been provided "AS IS" and the
  12. **    responsibility for its operation is 100% yours.  However, what you are
  13. **    not permitted to do is to redistribute the source as "DSC Sample Code"
  14. **    after having made changes. If you're going to re-distribute the source,
  15. **    we require that you make it clear in the source that the code was
  16. **    descended from Apple Sample Code, but that you've made changes.
  17.  
  18. */
  19.  
  20. #include "SimpleText.h"
  21.  
  22. #define kMovieWindowID    kMovieBaseID
  23.  
  24. #ifndef REZ
  25.     struct MovieDataRecord
  26.         {
  27.         WindowDataRecord        w;
  28.         
  29.         Movie                    theMovie;
  30.         MovieController            thePlayer;
  31.         long                    searchOffset;
  32.         };
  33.     typedef struct MovieDataRecord MovieDataRecord, *MovieDataPtr;    
  34. #endif
  35.